home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / textutils_1_3.LHA / textutils-1.3 / lib / Makefile.in < prev    next >
Makefile  |  1992-06-29  |  2KB  |  66 lines

  1. # Makefile for library files used by GNU textutils.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1991 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. SHELL = /bin/sh
  20.  
  21. srcdir = @srcdir@/lib
  22. @VPATH@
  23.  
  24. SOURCES = error.c getopt.c getopt1.c linebuffer.c regex.c xmalloc.c xwrite.c \
  25. bcopy.c memchr.c memcmp.c stpcpy.c
  26.  
  27. OBJECTS =  error.o getopt.o getopt1.o linebuffer.o regex.o xmalloc.o xwrite.o \
  28. @LIBOBJS@
  29.  
  30. DISTFILES = Makefile.in getopt.h linebuffer.h regex.h $(SOURCES)
  31.  
  32. all: libtu.a
  33. .PHONY: all
  34.  
  35. install: all
  36. .PHONY: install
  37.  
  38. tags: $(SOURCES)
  39.     ctags $(SOURCES)
  40.  
  41. TAGS: $(SOURCES)
  42.     etags $(SOURCES)
  43.  
  44. mostlyclean:
  45.     rm -f *.a *.o
  46. .PHONY: mostlyclean
  47.  
  48. clean: mostlyclean
  49.     rm -f tags TAGS Makefile
  50. .PHONY: clean
  51.  
  52. realclean: clean
  53. .PHONY: realclean
  54.  
  55. dist:
  56.     ln $(DISTFILES) ../`cat ../.fname`/lib
  57. .PHONY: dist
  58.  
  59. libtu.a: $(OBJECTS)
  60.     rm -f $@
  61.     $(AR) cr $@ $(OBJECTS)
  62.     -$(RANLIB) $@
  63.  
  64. getopt1.o: getopt.h
  65. regex.o: regex.h
  66.